home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / pcroct89.arc / BATCH.ARC / QCOPY.BAT < prev    next >
DOS Batch File  |  1990-03-21  |  622b  |  24 lines

  1. @echo off
  2. rem copies files requested to common destination
  3. rem requires DOS ver.3.3, inputset.txt, inputget.com
  4.  
  5. echo Enter pathname that files will be copied to (destination).
  6. inputget input.txt
  7. copy inputset.txt+input.txt inputset.bat>nul
  8. call inputset
  9. set DES=%INPUT%
  10.  
  11. :begin
  12. echo Enter (path &) name of file to copy (or Q to quit).
  13. inputget input.txt
  14. copy inputset.txt+input.txt inputset.bat>nul
  15. call inputset
  16. if "%INPUT%"=="Q" goto cleanup
  17. if "%INPUT%"=="q" goto cleanup
  18. copy %INPUT% %DES%
  19. goto begin
  20.  
  21. :cleanup
  22. for %%v in (INPUT DES) do set %%v=
  23. for %%v in (input.txt inputset.bat) do del %%v
  24.